home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / gas_251.zip / bin_251 / bfd / i386linux.c < prev    next >
C/C++ Source or Header  |  1994-08-22  |  21KB  |  723 lines

  1. /* BFD back-end for linux flavored i386 a.out binaries.
  2.    Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
  3.  
  4. This file is part of BFD, the Binary File Descriptor library.
  5.  
  6. This program is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2 of the License, or
  9. (at your option) any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20. #define    PAGE_SIZE    4096
  21. #define ZMAGIC_DISK_BLOCK_SIZE 1024
  22. #define    SEGMENT_SIZE    4096
  23. #define TEXT_START_ADDR    0x0
  24. #define N_SHARED_LIB(x) 0
  25. #define BYTES_IN_WORD 4
  26.  
  27. #include "bfd.h"
  28. #include "sysdep.h"
  29. #include "libbfd.h"
  30. #include "aout/aout64.h"
  31. #include "aout/stab_gnu.h"
  32. #include "aout/ar.h"
  33. #include "libaout.h"           /* BFD a.out internal data structures */
  34.  
  35. #define DEFAULT_ARCH bfd_arch_i386
  36. #define MY(OP) CAT(i386linux_,OP)
  37. #define TARGETNAME "a.out-i386-linux"
  38.  
  39. /* We always generate QMAGIC files in preference to ZMAGIC files.  It
  40.    would be possible to make this a linker option, if that ever
  41.    becomes important.  */
  42.  
  43. static void MY_final_link_callback
  44.   PARAMS ((bfd *, file_ptr *, file_ptr *, file_ptr *));
  45.  
  46. static boolean
  47. i386linux_bfd_final_link (abfd, info)
  48.      bfd *abfd;
  49.      struct bfd_link_info *info;
  50. {
  51.   obj_aout_subformat (abfd) = q_magic_format;
  52.   return NAME(aout,final_link) (abfd, info, MY_final_link_callback);
  53. }
  54.  
  55. #define MY_bfd_final_link i386linux_bfd_final_link
  56.  
  57. /* Set the machine type correctly.  */
  58.  
  59. static boolean
  60. i386linux_write_object_contents (abfd)
  61.      bfd *abfd;
  62. {
  63.   struct external_exec exec_bytes;
  64.   struct internal_exec *execp = exec_hdr (abfd);
  65.  
  66.   N_SET_MACHTYPE (*execp, M_386);
  67.  
  68.   obj_reloc_entry_size (abfd) = RELOC_STD_SIZE;
  69.  
  70.   WRITE_HEADERS(abfd, execp);
  71.  
  72.   return true;
  73. }
  74.  
  75. #define MY_write_object_contents i386linux_write_object_contents
  76.  
  77. /* Code to link against Linux a.out shared libraries.  */
  78.  
  79. /* See if a symbol name is a reference to the global offset table.  */
  80.  
  81. #ifndef GOT_REF_PREFIX
  82. #define    GOT_REF_PREFIX    "__GOT_"
  83. #endif
  84.  
  85. #define IS_GOT_SYM(name) \
  86.   (strncmp (name, GOT_REF_PREFIX, sizeof GOT_REF_PREFIX - 1) == 0)
  87.  
  88. /* See if a symbol name is a reference to the procedure linkage table.  */
  89.  
  90. #ifndef PLT_REF_PREFIX
  91. #define    PLT_REF_PREFIX    "__PLT_"
  92. #endif
  93.  
  94. #define IS_PLT_SYM(name) \
  95.   (strncmp (name, PLT_REF_PREFIX, sizeof PLT_REF_PREFIX - 1) == 0)
  96.  
  97. /* This special symbol is a set vector that contains a list of
  98.    pointers to fixup tables.  It will be present in any dynamicly
  99.    linked file.  The linker generated fixup table should also be added
  100.    to the list, and it should always appear in the second slot (the
  101.    first one is a dummy with a magic number that is defined in
  102.    crt0.o).  */
  103.  
  104. #ifndef SHARABLE_CONFLICTS
  105. #define SHARABLE_CONFLICTS "__SHARABLE_CONFLICTS__"
  106. #endif
  107.  
  108. /* We keep a list of fixups.  The terminology is a bit strange, but
  109.    each fixup contains two 32 bit numbers.  A regular fixup contains
  110.    an address and a pointer, and at runtime we should store the
  111.    address at the location pointed to by the pointer.  A builtin fixup
  112.    contains two pointers, and we should read the address using one
  113.    pointer and store it at the location pointed to by the other
  114.    pointer.  Builtin fixups come into play when we have duplicate
  115.    __GOT__ symbols for the same variable.  The builtin fixup will copy
  116.    the GOT pointer from one over into the other.  */
  117.  
  118. struct fixup
  119. {
  120.   struct fixup *next;
  121.   struct linux_link_hash_entry *h;
  122.   bfd_vma value;
  123.  
  124.   /* Nonzero if this is a jump instruction that needs to be fixed,
  125.      zero if this is just a pointer */
  126.   char jump;
  127.  
  128.   char builtin;
  129. };
  130.  
  131. /* We don't need a special hash table entry structure, but we do need
  132.    to keep some information between linker passes, so we use a special
  133.    hash table.  */
  134.  
  135. struct linux_link_hash_entry
  136. {
  137.   struct aout_link_hash_entry root;
  138. };
  139.  
  140. struct linux_link_hash_table
  141. {
  142.   struct aout_link_hash_table root;
  143.  
  144.   /* First dynamic object found in link.  */
  145.   bfd *dynobj;
  146.  
  147.   /* Number of fixups.  */
  148.   size_t fixup_count;
  149.  
  150.   /* Number of builtin fixups.  */
  151.   size_t local_builtins;
  152.  
  153.   /* List of fixups.  */
  154.   struct fixup *fixup_list;
  155. };
  156.  
  157. static struct bfd_hash_entry *linux_link_hash_newfunc
  158.   PARAMS ((struct bfd_hash_entry *, struct bfd_hash_table *, const char *));
  159. static struct bfd_link_hash_table *linux_link_hash_table_create
  160.   PARAMS ((bfd *));
  161. static struct fixup *new_fixup
  162.   PARAMS ((struct bfd_link_info *, struct linux_link_hash_entry *,
  163.        bfd_vma, int));
  164. static boolean linux_link_create_dynamic_sections
  165.   PARAMS ((bfd *, struct bfd_link_info *));
  166. static boolean linux_add_one_symbol
  167.   PARAMS ((struct bfd_link_info *, bfd *, const char *, flagword, asection *,
  168.        bfd_vma, const char *, boolean, boolean,
  169.        struct bfd_link_hash_entry **));
  170. static boolean linux_tally_symbols
  171.   PARAMS ((struct linux_link_hash_entry *, PTR));
  172. static boolean linux_finish_dynamic_link
  173.   PARAMS ((bfd *, struct bfd_link_info *));
  174.  
  175. /* Routine to create an entry in an Linux link hash table.  */
  176.  
  177. static struct bfd_hash_entry *
  178. linux_link_hash_newfunc (entry, table, string)
  179.      struct bfd_hash_entry *entry;
  180.      struct bfd_hash_table *table;
  181.      const char *string;
  182. {
  183.   struct linux_link_hash_entry *ret = (struct linux_link_hash_entry *) entry;
  184.  
  185.   /* Allocate the structure if it has not already been allocated by a
  186.      subclass.  */
  187.   if (ret == (struct linux_link_hash_entry *) NULL)
  188.     ret = ((struct linux_link_hash_entry *)
  189.        bfd_hash_allocate (table, sizeof (struct linux_link_hash_entry)));
  190.   if (ret == NULL)
  191.     return (struct bfd_hash_entry *) ret;
  192.  
  193.   /* Call the allocation method of the superclass.  */
  194.   ret = ((struct linux_link_hash_entry *)
  195.      NAME(aout,link_hash_newfunc) ((struct bfd_hash_entry *) ret,
  196.                        table, string));
  197.   if (ret != NULL)
  198.     {
  199.       /* Set local fields; there aren't any.  */
  200.     }
  201.  
  202.   return (struct bfd_hash_entry *) ret;
  203. }
  204.  
  205. /* Create a Linux link hash table.  */
  206.  
  207. static struct bfd_link_hash_table *
  208. linux_link_hash_table_create (abfd)
  209.      bfd *abfd;
  210. {
  211.   struct linux_link_hash_table *ret;
  212.  
  213.   ret = ((struct linux_link_hash_table *)
  214.      malloc (sizeof (struct linux_link_hash_table)));
  215.   if (ret == (struct linux_link_hash_table *) NULL)
  216.     {
  217.       bfd_set_error (bfd_error_no_memory);
  218.       return (struct bfd_link_hash_table *) NULL;
  219.     }
  220.   if (! NAME(aout,link_hash_table_init) (&ret->root, abfd,
  221.                      linux_link_hash_newfunc))
  222.     {
  223.       free (ret);
  224.       return (struct bfd_link_hash_table *) NULL;
  225.     }
  226.  
  227.   ret->dynobj = NULL;
  228.   ret->fixup_count = 0;
  229.   ret->local_builtins = 0;
  230.   ret->fixup_list = NULL;
  231.  
  232.   return &ret->root.root;
  233. }
  234.  
  235. /* Look up an entry in a Linux link hash table.  */
  236.  
  237. #define linux_link_hash_lookup(table, string, create, copy, follow) \
  238.   ((struct linux_link_hash_entry *) \
  239.    aout_link_hash_lookup (&(table)->root, (string), (create), (copy),\
  240.               (follow)))
  241.  
  242. /* Traverse a Linux link hash table.  */
  243.  
  244. #define linux_link_hash_traverse(table, func, info)            \
  245.   (aout_link_hash_traverse                        \
  246.    (&(table)->root,                            \
  247.     (boolean (*) PARAMS ((struct aout_link_hash_entry *, PTR))) (func),    \
  248.     (info)))
  249.  
  250. /* Get the Linux link hash table from the info structure.  This is
  251.    just a cast.  */
  252.  
  253. #define linux_hash_table(p) ((struct linux_link_hash_table *) ((p)->hash))
  254.  
  255. /* Store the information for a new fixup.  */
  256.  
  257. static struct fixup *
  258. new_fixup (info, h, value, builtin)
  259.      struct bfd_link_info *info;
  260.      struct linux_link_hash_entry *h;
  261.      bfd_vma value;
  262.      int builtin;
  263. {
  264.   struct fixup *f;
  265.  
  266.   f = (struct fixup *) bfd_hash_allocate (&info->hash->table,
  267.                       sizeof (struct fixup));
  268.   if (f == NULL)
  269.     return f;
  270.   f->next = linux_hash_table (info)->fixup_list;
  271.   linux_hash_table (info)->fixup_list = f;
  272.   f->h = h;
  273.   f->value = value;
  274.   f->builtin = builtin;
  275.   f->jump = 0;
  276.   ++linux_hash_table (info)->fixup_count;
  277.   return f;
  278. }
  279.  
  280. /* We come here once we realize that we are going to link to a shared
  281.    library.  We need to create a special section that contains the
  282.    fixup table, and we ultimately need to add a pointer to this into
  283.    the set vector for SHARABLE_CONFLICTS.  At this point we do not
  284.    know the size of the section, but that's OK - we just need to
  285.    create it for now.  */
  286.  
  287. static boolean
  288. linux_link_create_dynamic_sections (abfd, info)
  289.      bfd *abfd;
  290.      struct bfd_link_info *info;
  291. {
  292.   flagword flags;
  293.   register asection *s;
  294.  
  295.   /* Note that we set the SEC_IN_MEMORY flag.  */
  296.   flags = SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY;
  297.  
  298.   /* We choose to use the name ".linux-dynamic" for the fixup table.
  299.      Why not? */
  300.   s = bfd_make_section (abfd, ".linux-dynamic");
  301.   if (s == NULL
  302.       || ! bfd_set_section_flags (abfd, s, flags)
  303.       || ! bfd_set_section_alignment (abfd, s, 2))
  304.     return false;
  305.   s->_raw_size = 0;
  306.   s->contents = 0;
  307.  
  308.   return true;
  309. }
  310.  
  311. /* Function to add a single symbol to the linker hash table.  This is
  312.    a wrapper around _bfd_generic_link_add_one_symbol which handles the
  313.    tweaking needed for dynamic linking support.  */
  314.  
  315. static boolean
  316. linux_add_one_symbol (info, abfd, name, flags, section, value, string,
  317.               copy, collect, hashp)
  318.      struct bfd_link_info *info;
  319.      bfd *abfd;
  320.      const char *name;
  321.      flagword flags;
  322.      asection *section;
  323.      bfd_vma value;
  324.      const char *string;
  325.      boolean copy;
  326.      boolean collect;
  327.      struct bfd_link_hash_entry **hashp;
  328. {
  329.   struct linux_link_hash_entry *h;
  330.   boolean insert;
  331.  
  332.   /* Look up and see if we already have this symbol in the hash table.
  333.      If we do, and the defining entry is from a shared library, we
  334.      need to create the dynamic sections.
  335.  
  336.      FIXME: What if abfd->xvec != info->hash->creator?  We may want to
  337.      be able to link Linux a.out and ELF objects together, but serious
  338.      confusion is possible.  */
  339.  
  340.   insert = false;
  341.  
  342.   if (! info->relocateable
  343.       && linux_hash_table (info)->dynobj == NULL
  344.       && strcmp (name, SHARABLE_CONFLICTS) == 0
  345.       && (flags & BSF_CONSTRUCTOR) != 0)
  346.     {
  347.       if (! linux_link_create_dynamic_sections (abfd, info))
  348.     return false;
  349.       linux_hash_table (info)->dynobj = abfd;
  350.       insert = true;
  351.     }
  352.  
  353.   if (bfd_is_abs_section (section))
  354.     {
  355.       h = linux_link_hash_lookup (linux_hash_table (info), name, false,
  356.                   false, false);
  357.       if (h != NULL
  358.       && h->root.root.type == bfd_link_hash_defined)
  359.     {
  360.       struct fixup *f;
  361.  
  362.       if (hashp != NULL)
  363.         *hashp = (struct bfd_link_hash_entry *) h;
  364.  
  365.       f = new_fixup (info, h, value, ! IS_PLT_SYM (name));
  366.       if (f == NULL)
  367.         return false;
  368.       f->jump = IS_PLT_SYM (name);
  369.  
  370.       return true;
  371.     }
  372.     }
  373.  
  374.   /* Do the usual procedure for adding a symbol.  */
  375.   if (! _bfd_generic_link_add_one_symbol (info, abfd, name, flags, section,
  376.                       value, string, copy, collect,
  377.                       hashp))
  378.     return false;
  379.  
  380.   /* Insert a pointer to our table in the set vector.  The dynamic
  381.      linker requires this information */
  382.   if (insert)
  383.     {
  384.       asection *s;
  385.  
  386.       /* Here we do our special thing to add the pointer to the
  387.      dynamic section in the SHARABLE_CONFLICTS set vector.  */
  388.       s = bfd_get_section_by_name (linux_hash_table (info)->dynobj,
  389.                    ".linux-dynamic");
  390.       BFD_ASSERT (s != NULL);
  391.  
  392.       if (! (_bfd_generic_link_add_one_symbol
  393.          (info, linux_hash_table (info)->dynobj, SHARABLE_CONFLICTS,
  394.           BSF_GLOBAL | BSF_CONSTRUCTOR, s, 0, NULL, false, false, NULL)))
  395.     return false;
  396.     }
  397.  
  398.   return true;
  399. }
  400.  
  401. /* We will crawl the hash table and come here for every global symbol.
  402.    We will examine each entry and see if there are indications that we
  403.    need to add a fixup.  There are two possible cases - one is where
  404.    you have duplicate definitions of PLT or GOT symbols - these will
  405.    have already been caught and added as "builtin" fixups.  If we find
  406.    that the corresponding non PLT/GOT symbol is also present, we
  407.    convert it to a regular fixup instead.
  408.  
  409.    This function is called via linux_link_hash_traverse.  */
  410.  
  411. static boolean
  412. linux_tally_symbols (h, data)
  413.      struct linux_link_hash_entry *h;
  414.      PTR data;
  415. {
  416.   struct bfd_link_info *info = (struct bfd_link_info *) data;
  417.   struct fixup *f, *f1;
  418.   int is_plt;
  419.   struct linux_link_hash_entry *h1, *h2;
  420.   boolean exists;
  421.  
  422.   /* If this symbol is not a PLT/GOT, we do not even need to look at it */
  423.   is_plt = IS_PLT_SYM (h->root.root.root.string);
  424.  
  425.   if (is_plt || IS_GOT_SYM (h->root.root.root.string))
  426.     {
  427.       /* Look up this symbol twice.  Once just as a regular lookup,
  428.      and then again following all of the indirect links until we
  429.      reach a real symbol.  */
  430.       h1 = linux_link_hash_lookup (linux_hash_table (info),
  431.                    (h->root.root.root.string
  432.                     + sizeof PLT_REF_PREFIX - 1),
  433.                    false, false, true);
  434.       /* h2 does not follow indirect symbols. */
  435.       h2 = linux_link_hash_lookup (linux_hash_table (info), 
  436.                    (h->root.root.root.string
  437.                     + sizeof PLT_REF_PREFIX - 1),
  438.                    false, false, false);
  439.  
  440.       /* The real symbol must exist but if it is also an ABS symbol,
  441.      there is no need to have a fixup.  This is because they both
  442.      came from the same library.  If on the other hand, we had to
  443.      use an indirect symbol to get to the real symbol, we add the
  444.      fixup anyway, since there are cases where these symbols come
  445.      from different shared libraries */
  446.       if (h1 != NULL
  447.       && ((h1->root.root.type == bfd_link_hash_defined
  448.            && ! bfd_is_abs_section (h1->root.root.u.def.section))
  449.           || h2->root.root.type == bfd_link_hash_indirect))
  450.     {
  451.       /* See if there is a "builtin" fixup already present
  452.          involving this symbol.  If so, convert it to a regular
  453.          fixup.  In the end, this relaxes some of the requirements
  454.          about the order of performing fixups.  */
  455.       exists = false;
  456.       for (f1 = linux_hash_table (info)->fixup_list;
  457.            f1 != NULL;
  458.            f1 = f1->next)
  459.         {
  460.           if ((f1->h != h && f1->h != h1)
  461.           || (! f1->builtin && ! f1->jump))
  462.         continue;
  463.           if (f1->h == h1)
  464.         exists = true;
  465.           if (! exists
  466.           && bfd_is_abs_section (h->root.root.u.def.section))
  467.         {
  468.           f = new_fixup (info, h1, f1->h->root.root.u.def.value, 0);
  469.           f->jump = is_plt;
  470.         }
  471.           f1->h = h1;
  472.           f1->jump = is_plt;
  473.           f1->builtin = 0;
  474.           exists = true;
  475.         }
  476.       if (! exists
  477.           && bfd_is_abs_section (h->root.root.u.def.section))
  478.         {
  479.           f = new_fixup (info, h1, h->root.root.u.def.value, 0);
  480.           if (f == NULL)
  481.         {
  482.           /* FIXME: No way to return error.  */
  483.           abort ();
  484.         }
  485.           f->jump = is_plt;
  486.         }
  487.     }
  488.  
  489.       /* Quick and dirty way of stripping these symbols from the
  490.      symtab. */
  491.       if (bfd_is_abs_section (h->root.root.u.def.section))
  492.     h->root.written = true;
  493.     }
  494.  
  495.   return true;
  496. }
  497.  
  498. /* This is called to set the size of the .linux-dynamic section is.
  499.    It is called by the Linux linker emulation before_allocation
  500.    routine.  We have finished reading all of the input files, and now
  501.    we just scan the hash tables to find out how many additional fixups
  502.    are required.  */
  503.  
  504. boolean
  505. bfd_linux_size_dynamic_sections (output_bfd, info)
  506.      bfd *output_bfd;
  507.      struct bfd_link_info *info;
  508. {
  509.   struct fixup *f;
  510.   asection *s;
  511.  
  512.   /* First find the fixups... */
  513.   linux_link_hash_traverse (linux_hash_table (info),
  514.                 linux_tally_symbols,
  515.                 (PTR) info);
  516.  
  517.   /* If there are builtin fixups, leave room for a marker.  This is
  518.      used by the dynamic linker so that it knows that all that follow
  519.      are builtin fixups instead of regular fixups.  */
  520.   for (f = linux_hash_table (info)->fixup_list; f != NULL; f = f->next)
  521.     {
  522.       if (f->builtin)
  523.     {
  524.       ++linux_hash_table (info)->fixup_count;
  525.       ++linux_hash_table (info)->local_builtins;
  526.       break;
  527.     }
  528.     }
  529.  
  530.   if (linux_hash_table (info)->dynobj == NULL)
  531.     {
  532.       if (linux_hash_table (info)->fixup_count > 0)
  533.     abort ();
  534.       return true;
  535.     }
  536.  
  537.   /* Allocate memory for our fixup table.  We will fill it in later.  */
  538.   s = bfd_get_section_by_name (linux_hash_table (info)->dynobj,
  539.                    ".linux-dynamic");
  540.   if (s != NULL)
  541.     {
  542.       s->_raw_size = 8 + linux_hash_table (info)->fixup_count * 8;
  543.       s->contents = (bfd_byte *) bfd_alloc (output_bfd, s->_raw_size);
  544.       if (s->contents == NULL)
  545.     {
  546.       bfd_set_error (bfd_error_no_memory);
  547.       return false;
  548.     }
  549.       memset (s->contents, 0, s->_raw_size);
  550.     }
  551.  
  552.   return true;
  553. }
  554.  
  555. /* We come here once we are ready to actually write the fixup table to
  556.    the output file.  Scan the fixup tables and so forth and generate
  557.    the stuff we need.  */
  558.  
  559. static boolean
  560. linux_finish_dynamic_link (output_bfd, info)
  561.      bfd *output_bfd;
  562.      struct bfd_link_info *info;
  563. {
  564.   asection *s, *os, *is;
  565.   bfd_byte *fixup_table;
  566.   struct linux_link_hash_entry *h;
  567.   struct fixup *f;
  568.   unsigned int new_addr;
  569.   int section_offset;
  570.   int fixups_written;
  571.  
  572.   if (linux_hash_table (info)->dynobj == NULL)
  573.     return true;
  574.  
  575.   s = bfd_get_section_by_name (linux_hash_table (info)->dynobj,
  576.                    ".linux-dynamic");
  577.   BFD_ASSERT (s != NULL);
  578.   os = s->output_section;
  579.   fixups_written = 0;
  580.  
  581. #ifdef LINUX_LINK_DEBUG
  582.   printf ("Fixup table file offset: %x  VMA: %x\n", 
  583.       os->filepos + s->output_offset,
  584.       os->vma + s->output_offset);
  585. #endif
  586.  
  587.   fixup_table = s->contents;
  588.   bfd_put_32 (output_bfd, linux_hash_table (info)->fixup_count, fixup_table);
  589.   fixup_table += 4;
  590.  
  591.   /* Fill in fixup table.  */
  592.   for (f = linux_hash_table (info)->fixup_list; f != NULL; f = f->next)
  593.     {
  594.       if (f->builtin)
  595.     continue;
  596.  
  597.       if (f->h->root.root.type != bfd_link_hash_defined)
  598.     {
  599.       /* FIXME!  */
  600.       fprintf (stderr,
  601.            "Symbol %s not defined for fixups\n",
  602.            f->h->root.root.root.string);
  603.       continue;
  604.     }
  605.  
  606.       is = f->h->root.root.u.def.section;
  607.       section_offset = is->output_section->vma + is->output_offset;
  608.       new_addr = f->h->root.root.u.def.value + section_offset;
  609.  
  610. #ifdef LINUX_LINK_DEBUG
  611.       printf ("Fixup(%d) %s: %x %x\n",f->jump, f->h->root.root.string,
  612.           new_addr, f->value);
  613. #endif
  614.  
  615.       if (f->jump)
  616.     {
  617.       /* Relative address */
  618.       new_addr = new_addr - (f->value + 5); 
  619.       bfd_put_32 (output_bfd, new_addr, fixup_table);
  620.       fixup_table += 4;
  621.       bfd_put_32 (output_bfd, f->value + 1, fixup_table);
  622.       fixup_table += 4;
  623.     }
  624.       else
  625.     {
  626.       bfd_put_32 (output_bfd, new_addr, fixup_table);
  627.       fixup_table += 4;
  628.       bfd_put_32 (output_bfd, f->value, fixup_table);
  629.       fixup_table += 4;
  630.     }
  631.       ++fixups_written;
  632.     }
  633.  
  634.   if (linux_hash_table (info)->local_builtins != 0)
  635.     {
  636.       /* Special marker so we know to switch to the other type of fixup */
  637.       bfd_put_32 (output_bfd, 0, fixup_table);
  638.       fixup_table += 4;
  639.       bfd_put_32 (output_bfd, 0, fixup_table);
  640.       fixup_table += 4;
  641.       ++fixups_written;
  642.       for (f = linux_hash_table (info)->fixup_list; f != NULL; f = f->next)
  643.     {
  644.       if (! f->builtin)
  645.         continue;
  646.  
  647.       if (f->h->root.root.type != bfd_link_hash_defined)
  648.         {
  649.           /* FIXME!  */
  650.           fprintf (stderr,
  651.                "Symbol %s not defined for fixups\n",
  652.                f->h->root.root.root.string);
  653.           continue;
  654.         }
  655.  
  656.       is = f->h->root.root.u.def.section;
  657.       section_offset = is->output_section->vma + is->output_offset;
  658.       new_addr = f->h->root.root.u.def.value + section_offset;
  659.  
  660. #ifdef LINUX_LINK_DEBUG
  661.       printf ("Fixup(B) %s: %x %x\n", f->h->root.root.string,
  662.           new_addr, f->value);
  663. #endif
  664.  
  665.       bfd_put_32 (output_bfd, new_addr, fixup_table);
  666.       fixup_table += 4;
  667.       bfd_put_32 (output_bfd, f->value, fixup_table);
  668.       fixup_table += 4;
  669.       ++fixups_written;
  670.     }
  671.   }
  672.  
  673.   if (linux_hash_table (info)->fixup_count != fixups_written)
  674.     {
  675.       /* FIXME!  */
  676.       fprintf (stderr, "Warning: fixup count mismatch\n");
  677.       while (linux_hash_table (info)->fixup_count > fixups_written)
  678.     {
  679.       bfd_put_32 (output_bfd, 0, fixup_table);
  680.       fixup_table += 4;
  681.       bfd_put_32 (output_bfd, 0, fixup_table);
  682.       fixup_table += 4;
  683.       ++fixups_written;
  684.     }
  685.     }
  686.  
  687.   h = linux_link_hash_lookup (linux_hash_table (info), 
  688.                   "__BUILTIN_FIXUPS__",
  689.                   false, false, false);
  690.  
  691.   if (h != NULL && h->root.root.type == bfd_link_hash_defined)
  692.     {
  693.       is = h->root.root.u.def.section;
  694.       section_offset = is->output_section->vma + is->output_offset;
  695.       new_addr = h->root.root.u.def.value + section_offset;
  696.  
  697. #ifdef LINUX_LINK_DEBUG
  698.       printf ("Builtin fixup table at %x\n", new_addr);
  699. #endif
  700.  
  701.       bfd_put_32 (output_bfd, new_addr, fixup_table);
  702.     }
  703.   else
  704.     bfd_put_32 (output_bfd, 0, fixup_table);
  705.  
  706.   if (bfd_seek (output_bfd, os->filepos + s->output_offset, SEEK_SET) != 0)
  707.     return false;
  708.  
  709.   if (bfd_write ((PTR) s->contents, 1, s->_raw_size, output_bfd)
  710.       != s->_raw_size)
  711.     return false;
  712.  
  713.   return true;
  714. }
  715.  
  716. #define MY_bfd_link_hash_table_create linux_link_hash_table_create
  717. #define MY_add_one_symbol linux_add_one_symbol
  718. #define MY_finish_dynamic_link linux_finish_dynamic_link
  719.  
  720. #define MY_zmagic_contiguous 1
  721.  
  722. #include "aout-target.h"
  723.